home *** CD-ROM | disk | FTP | other *** search
- global gFirstTime, gCursors, gArchiveList, gMovieHyperList, gOurBlack, gCameFrom
-
- on prepareMovie
- if voidp(gFirstTime) then
- set gFirstTime to 1
- initInStub()
- InitInMain()
- end if
- initConsts()
- initCommonVars()
- initVars()
- set the mouseDownScript to "catchAllMouseDown"
- end
-
- on startMovie
- SetCursors(gCursors)
- set gCameFrom to #Library
- repeat with i = 15 to 17
- set the visible of sprite i to 0
- end repeat
- end
-
- on initVars
- set gCursors to [31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63]
- set gArchiveList to the value of field "gLibList" of castLib "globals"
- set gMovieHyperList to [:]
- if the machineType = 256 then
- set gOurBlack to 255
- else
- set gOurBlack to 0
- end if
- end
-